import * as React from "react"; import Link from "next/link"; import { Metadata } from "next"; import { getServerSession } from "next-auth/next"; import { authOptions } from "@/app/api/auth/[...nextauth]/route"; import { Button } from "@/components/ui/button"; import { LogIn } from "lucide-react"; import { Shell } from "@/components/shell"; import { VendorQuotationsTable } from "@/lib/techsales-rfq/vendor-response/table/vendor-quotations-table"; import { InformationButton } from "@/components/information/information-button" export const metadata: Metadata = { title: "기술영업 해양HULL RFQ 관리", description: "기술영업 해양HULL RFQ를 관리합니다.", }; export default async function VendorQuotationsHullPage() { // 세션 확인 const session = await getServerSession(authOptions); if (!session?.user) { return (

로그인이 필요합니다

RFQ를 확인하려면 로그인해주세요.

); } // 벤더 ID 확인 (사용자의 회사 ID가 벤더 ID) const vendorId = session.user.techCompanyId; if (!vendorId) { return (

기술영업 벤더 정보가 없습니다

기술영업 벤더 정보가 없습니다. 관리자에게 문의하세요.

); } return ( {/* 고정 헤더 영역 */}

기술영업 해양HULL RFQ

할당받은 해양HULL RFQ에 대한 견적서를 작성하고 관리합니다.

{/* 견적서 테이블 */}
); }